home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #1 / Amiga Plus CD - 2000 - No. 1.iso / Tools / Dev / mamesrc / fixsrc / Makefile < prev    next >
Makefile  |  1999-12-03  |  327b  |  25 lines

  1. CC     = gcc
  2. LD       = gcc
  3.  
  4. OUT    = fixsrc
  5.  
  6. CFLAGS = -g -I/gg/include -I/include -I/myinclude -m68000 -Wall -noixemul
  7.  
  8. LDFLAGS= -g
  9.  
  10. LIBS   = -noixemul
  11.  
  12. OBJS   = fixsrc.o scandir.o
  13.  
  14. all: $(OUT)
  15.  
  16. $(OUT): $(OBJS)
  17.     $(LD) -o $@ $(LDFLAGS) $(OBJS) $(LIBS)
  18.  
  19. %.o: %.c scandir.h
  20.     $(CC) $(CFLAGS) -o $@ -c $<
  21.  
  22. clean:
  23.     -rm    *.o
  24.     -rm    $(OUT)
  25.